home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web08 / Tutorial 5 / roundedtxt.css < prev    next >
Cascading Style Sheet File  |  2011-02-28  |  917b  |  27 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 5
  4.    Tutorial Case
  5.  
  6.    Style Sheet to create rounded boxes
  7.    Author: Andrew Densmore
  8.    Date: 2/28/11  
  9.  
  10.    Filename:         rounded.css
  11.    Supporting Files: bottom.png, bottomleft.png, bottomright.png, left.png,
  12.                      right.png, top.png, topleft.png, topright.png
  13.  
  14. */
  15. table.roundedBox {margin:5px; border-collapse: collapse}
  16. table.roundedBox td {padding: 0px}
  17.  
  18. table.roundedBox td.topLeft    {width: 16px; height: 16px}
  19. table.roundedBox td.topRight    {width: 16px; height: 16px}
  20. table.roundedBox td.bottomLeft    {width: 16px; height: 16px}
  21. table.roundedBox td.bottomRight    {width: 16px; height: 16px}
  22.  
  23. table.roundedBox td.top    {width: auto; height: 16px}
  24. table.roundedBox td.bottom    {width: auto; height: 16px}
  25.  
  26. table.roundedBox td.left    {width: 16px; height: auto}
  27. table.roundedBox td.right    {width: 16px; height: auto}